.centrar-contenido {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor principal del campo de búsqueda */
.search-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 25px;
    padding: 4px 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
}

/* Ícono de búsqueda */
.search-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #888;
}

/* Estilos del input */
#busquedaInput {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #333;
    width: 100%;
}

#busquedaInput:focus {
    background-color: transparent;
    box-shadow: none;
}


/* ----------------- Banner ----------------- */
.banner {
    /* background: linear-gradient(90deg, #03547E 0%, #01558C 51%, #0699D6 100%); */
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.texto_baner {
    background: linear-gradient(90deg, #00A490 0%, #1DB9FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 36px;
    margin: 0;
}

@media (min-width:768px) {
    .banner {
        height: 71px;
    }

    .texto_baner {
        font-size: 48px;
    }
}

@media (min-width:1440px) {
    .banner {
        height: 112px;
    }

    .texto_baner {
        font-size: 80px;
    }
}

/* ------------------- Cards --------------- */

.container-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
    align-items: center;
    padding: 0 4rem;
    max-width: 1440px;
}

.cards_item {
    padding: 1rem;
    margin-top: 1rem;
    box-sizing: border-box;
    /* Agrega esto */
    margin-bottom: auto;
    max-width: 265px !important;
    min-width: 263px;
    height: 450px;
    margin-bottom: 50px;
    margin-inline: 20px;
    padding-inline: 0rem !important;
}

@media (max-width: 782px) {
    .cards {
        padding: 0 1rem;
    }

    .cards_item {
        margin-inline: 10px;
    }
}

.card {
    border-radius: 20px !important;
    border: 1px #c6c6c6;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 480px;

    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: flex-start;
    min-width: auto;
    max-width: auto;
}

.card_image {
    position: relative;
    max-width: auto;
}

.card_image img {
    width: 100%;
    height: 196px;
    object-fit: cover;
}

.card_content {
    margin-top: 10px;
    position: relative;
    max-height: 250px;

    .card_title {
        font-family: "Avenir Heavy", sans-serif;
        font-size: 16px;
        position: relative;
        color: #00548e;
        line-height: normal;
        text-align: center;
        padding-bottom: 5px;
    }

    .card_title::after {
        position: absolute;
        display: block;
        width: 85%;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #00548e;
        content: "";
    }

    .card_text {
        margin: 11px 17px 0px 17px;
        /* margin-right: 5%; */
        color: #747474;
        font-family: "Avenir Heavy", sans-serif;
        font-size: 13px;
    }
}

.cotizar {
    text-align: center;
    margin-top: auto;
    margin-bottom: 0%;

    .carta_precio {
        color: #00A490;
        font-size: 16px;
        font-weight: 800;
    }
}

/*--------------------- Botón ajustes ----------------- */
.box-footer {
    text-decoration: none !important;
}

.btn-20.cotizar {
    width: 127px;
    height: 27px;
    margin-bottom: 20px;
}

/* ------------------ Paginador --------------- */

.pagination-container {
    display: flex;
    justify-content: center;
    margin: 20px;

    div.flex,
    div div p {
        display: none;
    }

    div div {

        .inline-flex>*,
        .inline-flex span span {
            border: 1px solid transparent !important;
        }

        .inline-flex span span {
            border-radius: 40px !important;
            background-color: #00548e !important;
            color: white;
            font-weight: 800;
        }

        .inline-flex>* {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: #4B5563;
            background-color: transparent;
            /* Fondo transparente por defecto */
            border-radius: 0;
            margin-right: 0.1rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Estilo para la flecha del SVG */
        .inline-flex span span svg {
            fill: white;
            width: 1em;
            height: 1em;
            margin-inline: 0.3em;
        }

        .inline-flex>svg {
            fill: currentColor;
            height: 1em;
            margin-inline: 0.3em;
        }

        .inline-flex>.font-medium {
            color: #2B6CB0;
            background-color: #E2E8F0;
            border-color: #CBD5E0;
        }

        /* Estilo para enlaces */
        .inline-flex>a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
    }
}